home *** CD-ROM | disk | FTP | other *** search
/ Hyper Stacks 1994 May / Hyper Stacks (Pacific HiTech)(1994)[Mac].iso / MacTools / HyperCard BBS / User Help / background_2642.txt < prev    next >
Encoding:
Text File  |  1988-08-11  |  2.5 KB  |  125 lines

  1. -- background: 2642 from stack: in
  2. -- bmap block id: 2051
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 3 (field)
  9. -- low flags: 01
  10. -- high flags: 0000
  11. -- rect: left=15 top=57 right=83 bottom=294
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 2
  16. -- text size: 18
  17. -- style flags: 1280
  18. -- line height: 24
  19. -- part name: Subject
  20.  
  21.  
  22. -- part 7 (button)
  23. -- low flags: 00
  24. -- high flags: 0000
  25. -- rect: left=375 top=255 right=294 bottom=415
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 26425 / 26425
  28. -- text alignment: 1
  29. -- font id: 0
  30. -- text size: 12
  31. -- style flags: 0
  32. -- line height: 16
  33. -- part name: Next
  34. ----- HyperTalk script -----
  35. on mouseUp
  36.   visual effect wipe left fast
  37.   go to next card
  38. end mouseUp
  39.  
  40.  
  41.  
  42. -- part 4 (field)
  43. -- low flags: 01
  44. -- high flags: 0000
  45. -- rect: left=55 top=90 right=327 bottom=308
  46. -- title width / last selected line: 0
  47. -- icon id / first selected line: 0 / 0
  48. -- text alignment: 0
  49. -- font id: 3
  50. -- text size: 10
  51. -- style flags: 0
  52. -- line height: 13
  53. -- part name: 
  54. ----- HyperTalk script -----
  55. on mouseUp
  56.   get item 2 of the clickLoc
  57.   subtract item 2 of the rect of field 2 from it
  58.   divide it by the textHeight of field 2
  59.   get trunc(it)
  60.   if (it < 0) or (it > 16) then exit mouseUp
  61.   put it into card field 1
  62.   send closeField to card field 1
  63. end mouseUp
  64.  
  65.  
  66.  
  67. -- part 6 (button)
  68. -- low flags: 00
  69. -- high flags: 0000
  70. -- rect: left=375 top=212 right=251 bottom=415
  71. -- title width / last selected line: 0
  72. -- icon id / first selected line: 902 / 902
  73. -- text alignment: 1
  74. -- font id: 0
  75. -- text size: 12
  76. -- style flags: 0
  77. -- line height: 16
  78. -- part name: Previous
  79. ----- HyperTalk script -----
  80. on mouseUp
  81.   visual effect wipe right fast
  82.   go to previous card
  83. end mouseUp
  84.  
  85.  
  86.  
  87. -- part 5 (button)
  88. -- low flags: 00
  89. -- high flags: 8000
  90. -- rect: left=425 top=207 right=254 bottom=488
  91. -- title width / last selected line: 0
  92. -- icon id / first selected line: 17481 / 17481
  93. -- text alignment: 1
  94. -- font id: 0
  95. -- text size: 12
  96. -- style flags: 0
  97. -- line height: 16
  98. -- part name: Index of help
  99. ----- HyperTalk script -----
  100. on mouseUp
  101.   visual effect dissolve fast
  102.   go to first card
  103. end mouseUp
  104.  
  105.  
  106.  
  107. -- part 8 (button)
  108. -- low flags: 00
  109. -- high flags: 8000
  110. -- rect: left=433 top=255 right=300 bottom=479
  111. -- title width / last selected line: 0
  112. -- icon id / first selected line: 29114 / 29114
  113. -- text alignment: 1
  114. -- font id: 0
  115. -- text size: 12
  116. -- style flags: 0
  117. -- line height: 16
  118. -- part name: Quit help
  119. ----- HyperTalk script -----
  120. on mouseUp
  121.   visual effect iris close fast
  122.   pop card
  123. end mouseUp
  124.  
  125.